home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-177.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12397);
  11.  script_version ("$Revision: 1.4 $");
  12.  
  13.  name["english"] = "RHSA-2003-177: rhn_register";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = '
  18.  
  19.   Updated versions of the rhn_register and up2date packages are now
  20.   available. The new packages include many bug fixes, and a few new features.
  21.  
  22.   The rhn_register and up2date packages contain the software necessary to
  23.   take advantage of Red Hat Network functionality.
  24.  
  25.   The up2date package incorporates improvements in handling package
  26.   dependencies and "obsoletes" processing, along with many other bug fixes.
  27.  
  28.   This release also includes an updated RHNS-CA-CERT file, which contains an
  29.   additional CA certificate. This is needed so that up2date can continue to
  30.   communicate with Red Hat Network once the current CA certificate reaches
  31.   its August 2003 expiration date.
  32.  
  33.   All users of Red Hat Network should therefore upgrade to these erratum
  34.   packages.
  35.  
  36.  
  37.  
  38.  
  39. Solution : http://rhn.redhat.com/errata/RHSA-2003-177.html
  40. Risk factor : High';
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Check for the version of the rhn_register packages";
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  50.  family["english"] = "Red Hat Local Security Checks";
  51.  script_family(english:family["english"]);
  52.  
  53.  script_dependencies("ssh_get_info.nasl");
  54.  
  55.  script_require_keys("Host/RedHat/rpm-list");
  56.  exit(0);
  57. }
  58.  
  59. include("rpm.inc");
  60. if ( rpm_check( reference:"rhn_register-2.8.34-1.2.1AS", release:"RHEL2.1") )
  61. {
  62.  security_hole(0);
  63.  exit(0);
  64. }
  65. if ( rpm_check( reference:"rhn_register-gnome-2.8.34-1.2.1AS", release:"RHEL2.1") )
  66. {
  67.  security_hole(0);
  68.  exit(0);
  69. }
  70. if ( rpm_check( reference:"up2date-2.8.45-1.2.1AS", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75. if ( rpm_check( reference:"up2date-gnome-2.8.45-1.2.1AS", release:"RHEL2.1") )
  76. {
  77.  security_hole(0);
  78.  exit(0);
  79. }
  80.  
  81.  
  82. set_kb_item(name:"RHSA-2003-177", value:TRUE);
  83.